-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating Dev testing env #116
Conversation
utils/deploy/envoy.yaml
Outdated
@@ -337,7 +337,7 @@ data: | |||
"data": [ | |||
{ | |||
"selector": { | |||
"selector": "filter_state.wasm\\.kuadrant\\.identity\\.userid", | |||
"selector": "auth.identity.userid", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably not something one would ever want to do.
All selector
usages should be avoided. This should be an expression
here.
10e70f2
to
5eb0b5a
Compare
Signed-off-by: dd di cesare <[email protected]>
Signed-off-by: dd di cesare <[email protected]>
Signed-off-by: dd di cesare <[email protected]>
Signed-off-by: dd di cesare <[email protected]>
5eb0b5a
to
1f8f580
Compare
@@ -212,7 +204,7 @@ data: | |||
"scope": "rlp-ns-B/rlp-name-B", | |||
"data": [ | |||
{ | |||
"static": { | |||
"expression": { | |||
"key": "rlp-ns-B/rlp-name-B/limit-not-to-be-activated", | |||
"value": "1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While this would work, this also changed the type tho! It's now int(1)
... but will be erased and will be 1
, just as if you had it as "\"1\""
in there, which would be closer semantically to what this was before...
tl;dr not wrong, but... ;)
This PR updates our development environment for testing and the e2e test for the remote address using CEL expressions and predicates.